
body {
    margin: 0;
    font-family: 'Work Sans', sans-serif;
    background-color: white ;
  }
  html, body {
    overscroll-behavior: none;
  }
 /* Fullscreen video wrapper */
 .video-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Fullscreen video styling */
.fullscreen-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
 /* Overlay logo */
 .video-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 200px;
}
.content {
  position: relative;
  z-index: 1;
  padding: 20px;
}
.section-below-video {
  margin: 15vh 3vw 0 3vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 20vh;
  background-color: white;
  color: #000000;
  text-align: center;
  padding: 20px;
  margin-bottom: 5vh;
}
.section-below-video h1 {
  font-family: 'Crimson Text', serif;
  font-size: 35px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.section-below-video p {
  font-family: 'Work Sans', serif;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 20px;
  text-align: justify;
}
.section-below-video a {
  font-family: 'Forum', cursive;  font-size: 30px;
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  border-bottom: 1px solid #fff;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  text-transform: uppercase;
}

.section-below-video a:hover {
  color: #CEAA7C;
  border-bottom: 1px solid #CEAA7C;
}

@media screen and (max-width: 1024px) {
  .section-below-video h1 {
    font-family: 'Crimson Text', serif;
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  
  .section-below-video a {
    font-family: 'Forum', cursive;    font-size: 23px;
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    border-bottom: 1px solid #fff;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    text-transform: uppercase;
  }
  
  .section-below-video a:hover {
    color: #CEAA7C;
    border-bottom: 1px solid #CEAA7C;
  }
}

@media screen and (max-width: 768px) {
  .section-below-video h1 {
    font-family: 'Crimson Text', serif;
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  
  .section-below-video a {
    font-family: 'Forum', cursive;    font-size: 18px;
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    border-bottom: 1px solid #fff;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    text-transform: uppercase;
  }
  
  .section-below-video a:hover {
    color: #CEAA7C;
    border-bottom: 1px solid #CEAA7C;
    text-transform: uppercase;
  }
}

@media screen and (max-width: 640px) {
  .section-below-video h1 {
    font-family: 'Crimson Text', serif;
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  
  .section-below-video a {
    font-family: 'Forum', cursive;   font-size: 18px;
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    border-bottom: 1px solid #fff;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    text-transform: uppercase;
  }
  
  .section-below-video a:hover {
    color: #CEAA7C;
    border-bottom: 1px solid #CEAA7C;
    text-transform: uppercase;
  }
}

/* Carousel */
.carousel-container {
    position: relative; /* allows absolutely positioned arrows */
    width: 100%;
    height: auto;
    overflow: hidden;
    background-color: #fff;
}
.carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 10px;
  scrollbar-width: none; /* Hide scrollbar in Firefox */
  background-color: #fff;
  align-items: center;
  margin-top: 55px;
}

.carousel::-webkit-scrollbar {
  display: none; /* Hide scrollbar in Chrome, Safari, and Edge */
}
.carousel-button {

  font-family: 'Work Sans', sans-serif;
  font-weight: lighter;
  color: #000;
  position: absolute;
  
  right: 10px; /* Align the buttons to the right */
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1;
}

.carousel-button.left {
  left: 10px;
}

.carousel-button.right {
  right: 10px;
}
.carousel-item {
  flex: 0 0 calc(80% - 10px);
  scroll-snap-align: start;
  text-align: center;
  color: #fff;
  font-family: 'Forum', cursive;
}

.carousel-item img {
  flex: 0 0 calc(80% - 10px);
  scroll-snap-align: start;
  width: 100%;
  height: auto;
  
}

.carousel-item h3 {
  margin-top: 10px;
  font-size: 30px;
  font-family: 'Forum', cursive;  font-weight: 100;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .carousel-item {
    flex: 0 0 calc(80% - 10px); /* Two items visible on tablet */
  }
  .carousel-item h3 {
    margin-top: 10px;
    font-size: 23px;
    font-family: 'Forum', cursive; font-weight: 100;
    text-transform: uppercase;
  }
}

@media screen and (max-width: 768px) {
  .carousel-item {
    flex: 0 0 calc(80% - 10px); /* Center one item with half items visible on mobile */
  }
  .carousel-item h3 {
    margin-top: 10px;
    font-size: 15px;
    font-family: 'Forum', cursive;  font-weight: 100;
    text-transform: uppercase;
  }
  
}
  /* Header styling */
  h1 {
    font-family: 'Crimson Text', serif;
    font-size: 35px;
    font-weight: 100;
  }

  /* Subheader styling */
  h2 {
    font-family: 'Forum', cursive;
    font-size: 30px;
  }

  /* Body text styling */
  p {
    font-family: 'Work Sans', sans-serif;
    font-size: 23px;
    font-weight: 300;
  }

  a {
    font-family: 'Forum';
    font-size: 16px;
    font-weight: 100;
  }
  /* Responsive styles */
  @media screen and (max-width: 1024px) {
    h1 {
      font-size: 45px;
    }
    h2 {
      font-size: 23px;
    }
    p {
      font-size: 18px;
    }
    a {
      font-size: 18px;
    }
  }

  @media screen and (max-width: 768px) {
    h1 {
      font-size: 40px;
    }
  }

 /* Navbar container */
 .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 10px 20px;
  
  z-index: 1000;
}

/* Left container: Logo and links */
.navbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-grow: 1;
}

/* Logo */
.navbar-logo img {
  height: 40px;
  width: 40px;
}
.navbar-menu img {
  height: 40px;
  width: 40px;
}

.navbar-menu {
  display: none;
}


/* Navbar links */
.navbar-links {
  display: flex;
  gap: 20px;
  flex-grow: 1;
}

.navbar-links a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-size: 18px;
  font-weight: normal;
  text-transform: uppercase;
  font-family: 'Crimson Text', serif;
  transition: color 0.3s ease;
}

.navbar-links a:hover {
  color: #CEAA7C;
}

/* Book Now button */
.navbar-button {
  background-color: #ceaa7c;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase;
  font-family: 'Crimson Text', serif;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.navbar-button:hover {
  background-color: #ffcc99;
  transform: scale(1.05);
}

/* Hamburger menu */
.hamburger {
  display: none;
  font-size: 25px;
  color: rgb(0, 0, 0);
  cursor: pointer;
  background: none;
  border: none;
  padding-left: 10px;
}

/* Collapsed menu */
.navbar-links.collapsed {
  display: none;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 100%; /* Aligns perfectly below the navbar */
  left: 0;
  width: 100%; /* Match the navbar width */
  max-width: 85vw; /* Ensure it does not exceed navbar width */
  border-radius: 0 0 10px 10px;
  padding: 10px 20px;
  z-index: 999;
}

.navbar-links.collapsed a {
  padding: 10px 0;
  text-align: left;
  color: white;
  display: block;
}

.navbar-links.collapsed a:hover {
  color: #CEAA7C;
}
.lswitch {
  display: block;
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-size: 18px;
  font-weight: normal;
  margin-left: 10px;
  font-family: 'Crimson Text', serif;
  transition: color 0.3s ease;
}
.lswitch a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-size: 18px;
  font-weight: 400;
  font-family: 'Crimson Text', serif;
  transition: color 0.3s ease;
}
/* Responsive styles */
@media screen and (max-width: 1024px) {
  .navbar-links {
    display: none;
  }
  .navbar-menu {
    display: block;
  }
  .hamburger {
    display: block;
  }

  .navbar {
    flex-direction: row;
  }
  .navbar-logo img {
    height: 40px;
    width: 40px;
  }
  .lswitch {
    display: none;
  }
}
/* Footer styles */
.footer {
  background-color: #191715; /* Dark background */
  color: white;
  padding: 40px 5%;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Left Section: The Hotel & More */
.footer-left {
  display: flex;
  flex-direction: row;
  width: 30%;
  min-width: 250px;
  gap: 40px;
}

/* Right Section: Newsletter */
.footer-right {
  flex: 1; /* Takes remaining space */
  max-width: 400px;
}

.footer h2 {
  font-family: 'Crimson Text', serif;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 10px;
}

.footer p {
  font-size: 14px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 300;
  margin-bottom: 15px;
}

/* Footer Links */
.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 6px;
}

.footer ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
  font-family: 'Work Sans', sans-serif;
}

.footer ul li a:hover {
  color: #CEAA7C;
}

/* Newsletter Form */
.footer form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer input {
  padding: 10px;
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  color: white;
  background-color: transparent;
  border: 1px solid white;

}

.footer button {
  text-transform: uppercase;
  padding: 10px;
  font-family: 'Crimson Text', serif;
  font-size: 16px;
  background-color: #d3a676;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.footer button:hover {
  background-color: #ffcc99;
}

/* Footer Bottom */
.footer-line {
  border: 0;
  border-top: 1px solid #555;
  margin-top: 30px;
}

.footer-bottom {
  text-align: center;
  font-family: 'Work Sans', serif;
  font-weight: 300;
  font-size: 14px;
  color: #f5f5f5;
  margin-top: 20px;
}

.footer-bottom a {
  color: #fff;
  text-decoration: underline;
  margin: 0 10px;
  font-size: 14px;
}

.footer-bottom a:hover {
  color: #CEAA7C;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      text-align: left;
      align-items: left;
  }

  .footer-left {
      flex-direction: column;
      width: 100%;
      gap: 20px;
      text-align: left;
  }

  .footer-right {
      margin-top: 10vh;
      width: 100%;
      max-width: 100%;
      text-align: left;
  }

  .footer-bottom {
      font-size: 12px;
  }
}





.suite-section {
    max-width: 100vw;
    margin: 0 3vw 0 3vw;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Left: text, Right: carousel */
    align-items: center;
    gap: 2rem;
  }

  /* ...existing code... */

  @media (max-width: 1024px) {
    .suite-section {
      grid-template-columns: 1fr; /* Stack columns on smaller screens */
    }
  }

    /* Left Column: Text & Button */
    .suite-text h1 {
      font-size: 23px;
      margin-bottom: 1rem;
    }
    .suite-text p {
      margin-bottom: 2rem;
      line-height: 1.5;
      font-family: 'Work Sans', serif;
            font-weight: 300;
            font-size: 16px;
    }
    .suite-text a {
      font-family: 'Crimson Text', serif;
      text-decoration: underline;
      color: #000;
      font-weight: 400;
      font-size: 23px;
    }

        /* Container */
        .suite-details {
            max-width: 95vw;
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: repeat(4, 1fr); /* 4 columns for large screens */
            gap: 2rem;
          }
        .suite-details p {
            font-family: 'Crimson Text', sans-serif;
            font-weight: 400;
            font-size: 16px;
            line-height: 1.5;
        }
          /* Heading */
          .suite-details h2 {
            font-family: 'Forum', serif;
            font-weight: 400;
            font-size: 23px;
            margin-bottom: 1rem;
          }
      
          /* Responsive grid */
          @media (max-width: 1024px) { /* Tablet */
            .suite-details {
              grid-template-columns: repeat(2, 1fr); /* 2x2 grid */
            }
          }
      
          @media (max-width: 768px) { /* Mobile */
            .suite-details {
              grid-template-columns: repeat(1, 1fr); /* 4x1 (single column) */
            }
            .suite-section {
              margin: 0;
            }
          }

/* Contact Container */
.contact-container {
  display: flex;
  justify-content: space-between;
  margin: 0 4vw 15vh 4vw;
  padding: 50px 20px;
 
}

/* Left Section: Contact Info */
.contact-info {
  width: 40%;
  padding-right: 40px;
}

.contact-info h1 {
  font-size: 32px;
  text-transform: uppercase;
}

.contact-info h2 {
  font-family: 'Crimson Text', serif;
  font-weight: 600;
  font-size: 20px;
  margin-top: 20px;
}

.contact-info p {
  font-size: 16px;
  margin: 5px 0;
}

.contact-info a {
  color: black;
  text-decoration: underline;
  ;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Right Section: Contact Form */
.contact-form {
  width: 45%;
  margin-top: 2vh;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

/* Apply Aileron font to form labels */
.contact-form label {
  margin-top: 10px;
  font-family: 'Forum';
  font-weight: 100;
  font-size: 16px;
  
  text-transform: uppercase;
}

/* Input & Textarea Styling */
.contact-form input,
.contact-form textarea {
 
  padding: 10px;
  margin-top: 10px;
  
  font-size: 16px;
}

.contact-form textarea {
  height: 100px;
  resize: vertical;
}

/* Submit Button */
.submit-btn {
  background-color: #c8a47e;
  font-family: 'Forum';
  font-weight: 400;
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 10px;
  border: none;
  cursor: pointer;
  margin-top: 15px;
  align-self: flex-end;
  width: 150px;
}

.submit-btn:hover {
  background-color: #a07b5c;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .contact-container {
      flex-direction: column;
      text-align: left;
  }

  .contact-info,
  .contact-form {
      width: 100%;
      padding: 0;
  }

  .contact-form form {
      align-items: left;
  }

  .submit-btn {
      width: 100%;
  }
}